home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / QDDVX102.ZIP / contrib / dvx / inc / regexcmp.h < prev   
Text File  |  1993-07-15  |  365b  |  20 lines

  1. /*
  2.  * DESQview/X System Library, Copyright Quarterdeck Office Systems (c) 1991
  3.  */
  4.  
  5. #include <stddef.h>
  6.  
  7. #ifdef __WATCOMC__
  8. #define CDECL cdecl
  9. #else
  10. #define CDECL
  11. #endif
  12.  
  13. #ifndef NO_PROTO
  14. extern char * CDECL regex(char *, char *);
  15. extern char * CDECL regcmp(char *, ...);
  16. #else
  17. extern char * CDECL regex();
  18. extern char * CDECL regcmp();
  19. #endif
  20.